home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu723.dms / pu723.adf / PhotoCDAGA / ppm2AGA.doc < prev    next >
Text File  |  1994-11-19  |  12KB  |  355 lines

  1.  
  2.                          ppm2AGA 1.5 by Günther Röhrich
  3.                          ******************************
  4.  
  5.  
  6. ppm2AGA ist a program for converting the ppm, pgm and pbm picture format into
  7. the IFF-ILBM format. For owners of an AGA-Amiga it is now possible to create
  8. high quality pictures without having to pay much money for a commercial image
  9. processing software. Together with the NETPBM-package it is possible to convert
  10. every other picture format and to do some basic image processing.
  11.  
  12. The advantages of ppm2AGA:
  13. - very high quality in the HAM8-mode
  14.   (better than some commercial programs)
  15. - processing pictures that are larger than the available memory is possible
  16. - saving to the Clipboard is possible
  17. - colormaps with full 24 Bit color precision are supported
  18. - the source is available
  19. - runs on all Amiga's  (even with KS 1.2/1.3 if iffparse.library V37 is
  20.   available)
  21.  
  22.  
  23. This program is Freeware with the following restrictions:
  24.  
  25. Some parts of the program are taken from the NETPBM-package and are therefore
  26. Copyright (C) 1989, 1991 by Jef Poskanzer. These parts are heavily modified.
  27.  
  28. This is allowed by the original author as you can read in the following text
  29. written by him:
  30.  
  31. Permission to use, copy, modify, and distribute this software and its
  32. documentation for any purpose and without fee is hereby granted, provided
  33. that the above copyright notice appear in all copies and that both that
  34. copyright notice and this permission notice appear in supporting
  35. documentation.  This software is provided "as is" without express or
  36. implied warranty.
  37.  
  38. If you modify or redistribute ppm2AGA you have to take care of this
  39. permission notice. The files in the directory "Developer" are written
  40. completely by me and they are therefore not covered by the copyright notice.
  41. You can do what you want with them.
  42.  
  43.  
  44. I have to thank the following persons:
  45.  
  46. Jef Poskanzer (jef@well.sf.ca.us):
  47.  for the development of the ppm-format and the pbm-software
  48.  
  49. Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de):
  50.  for the Amiga-specific parts of NETPBM and for ppmtoilbm.c
  51.  
  52. Johan Widen (jw@jwdata.se):
  53.  for the chunky->planar conversion routine in ppmtoilbm.c
  54.  
  55. Paul Heckbert:
  56.  the color quantizing routine in ppmquant.c is based on his article in
  57.  "SIGGRAPH '82 Proceedings", p. 297
  58.  
  59. The Independent JPEG Group (jpeg-info@uunet.uu.net):
  60.  for the source for decoding/encoding the JPEG-format
  61.  
  62. ***********************************************************************
  63.  
  64. I have created two versions of the program:
  65.  
  66. ppm2AGA.000 for 68000 and 68010 processors, it runs on all others too
  67. ppm2AGA.020 for 68020 or higher processors
  68.  
  69. I don't know if the 68000-version works because I don't have a 68000-based
  70. Amiga to test it. As operating system you will need OS 1.3 or higher.
  71. (With OS 1.3 you will need iffparse.library V37 which is available on the
  72. Workbench 2.0 disk.)
  73.  
  74. NOTE: Newer versions of ixemul.library (40.xx) don't work any more with
  75. Kickstart 1.2/1.3.
  76.  
  77.  
  78.  
  79. Invoking ppm2AGA:
  80.  
  81.   ppm2AGA inputfile outputfile options
  82.  
  83.  
  84. inputfile
  85. *********
  86.  
  87. The name of the file that should be read. Supported picture formats are:
  88. PPM - color, 24 bit/pixel (16Meg colors)
  89. PGM - greyscale, 8 bit/pixel (256 greyscales)
  90. PBM - black/white, 1 bit/pixel
  91. Both binary and ASCII formats are accepted. More informations can be found
  92. in the NETPBM-package.
  93.  
  94.  
  95. outputfile
  96. **********
  97.  
  98. This is the name of the IFF-ILBM file that should be created. If you use -cn
  99. as a name then the file will be written to the Clipboard with unit number n.
  100. (You should normally use unit number 0.)
  101.  
  102.  
  103. options
  104. *******
  105.  
  106. All options are case-insensitive. If they are not set then internal default
  107. values will be used.
  108.  
  109.  
  110. -HAM8 (default)
  111.  
  112. Use the HAM8 conversion method. This allows a total of 262144 different colors
  113. for the created picture.
  114.  
  115.  
  116. -HAM6
  117.  
  118. Use HAM6-mode. The quality is not very good (compared to other programs). The
  119. created picture may have max. 4096 colors.
  120. mode.
  121.  
  122.  
  123. -CMAPn
  124.  
  125. Use the colormap conversion method with n bitplanes. (max. 8) The created
  126. pictures will have max. 2^n colors out of about 16 millions.
  127. If you display the picture on an ECS/OCS machine with the original hardware 
  128. then the picture will not show the original colors because these machines only
  129. support a color selection out of 4096 colors.
  130. You can use the -FS option with this mode.
  131.  
  132.  
  133. -E
  134.  
  135. (Only for use in combination with the -CMAPn option.)
  136. Use this option when you know that the ppm-file has a limited number of colors.
  137. (less than 10000) This is for example the case when the ppm-file results from
  138. a colormapped picture format like GIF, BMP, etc.
  139. This option ensures that the original colors will be preserved. When converting
  140. the pgm-format this option will be set automatically because pgm-files have max.
  141. 256 greyscales.
  142.  
  143.  
  144. -FS
  145.  
  146. Use Floyd-Steinberg dithering. This may enhance the picture qualitiy.
  147. When used with the HAM8-mode the enhancement will not be that much.
  148.  
  149.  
  150. -Mx
  151.  
  152. Load pictures up to size x (in bytes) into memory. (default: 1000000)
  153.  
  154.  
  155. -2 
  156.  
  157. Use two-pass processing in the HAM6/HAM8 mode. This gives slightly better
  158. results. With digitized pictures you will not see any difference in most
  159. cases.
  160. (Version 1.0 of ppm2AGA always used two passes.)
  161.  
  162.  
  163. -D
  164.  
  165. Display the picture during processing. You need OS 3.0 or higher. If the
  166. screen cannot be opened processing will continue without display. To move
  167. the screen around with the mouse you have to activate it first. It also
  168. has a hidden drag bar and depth gadget. 
  169.  
  170.  
  171. -VGA
  172.  
  173. The picture will always use the VGA screenmode (also called 'multiscan').
  174. If your machine does not support this mode you will have problems showing
  175. the picture. Use this option when you know that the picture was intended for
  176. displaying on a PC or other machines with quadratic screen resolution.
  177.  
  178. NOTE: With 'quadratic' I don't mean that the screen has the same number of
  179. pixels in horizontal and vertical direction. (e.g. 1024x1024)
  180. I mean that a square composed of e.g. 100x100 pixels will be shown as a
  181. square on the screen. Because a usual picture tube has a ratio of 4 to 3
  182. the screen's resolution must be a multiple of that. (e.g. 640x480 because
  183.  
  184.  640   4
  185.  --- = - )
  186.  480   3
  187.  
  188.  
  189. -SMR
  190.  
  191. (New for version 1.4)
  192. When setting this option you can use a screen mode requester to choose the
  193. display mode. But you can choose only display modes that are available on your
  194. machine. You will also need Workbench 2.1 or higher.
  195. The options -HAM8, -HAM6, -CMAPx and -VGA will be ignored if they are set.
  196.  
  197.  
  198. -jpegAGA
  199.  
  200. Instead of an IFF-ILBM file a map-file for the program jpegAGA/PhotoCDAGA will
  201. be created. Normally, map-files are created by using a shell script. See the
  202. documentation to jpegAGA/PhotoCDAGA for more.
  203. New for version 1.4:
  204. If it is not possible to store the map-file in the specified place (for example
  205. if the storage media is full or write protected) then the map-file will be
  206. stored into the directory pointed to by the MAPDIR environment variable.
  207. jpegAGA 1.1 or higher will also search the map-file in that place.
  208.  
  209.  
  210. If you don't know what options to use to get the best quality make three
  211. conversions with the options: -HAM8 -FS, -CMAP8, -CMAP8 -FS and compare the
  212. results.
  213.  
  214. There is also a JPEG decompression program included. It converts JPEG
  215. pictures to the ppm format. To use it enter:
  216.  
  217.  djpeg inputfile outputfile
  218.  
  219. In some cases djpeg will try to store temporary files to JPEGTMP:, you
  220. have then to assign this directory to somewhere on your hard disk.
  221. (for example assign JPEGTMP: HD:T)
  222. For more informations read the included documentation.
  223.  
  224.  
  225. How the program works
  226. *********************
  227.  
  228. Not translated into English yet. Read the German documentation.
  229.  
  230.  
  231. Questions and answers
  232. *********************
  233.  
  234. Not translated into English yet. Read the German documentation. :-(
  235.  
  236.  
  237.  
  238. History
  239. *******
  240.  
  241. 1.0 - 19-Apr-1994
  242.     
  243.     - first public release
  244.  
  245.  
  246. 1.1 - 5-May-1994
  247.  
  248.     - added -2 option
  249.     - one-pass processing is now the default in HAM6/HAM8 mode
  250.       (use the -2 option to get the same results as version 1.0)
  251.     - added -D option to display the picture during processing
  252.     - the documentation now contains my correct EMAIL-address
  253.  
  254.  
  255. 1.2 - 15-May-1994
  256.  
  257.     - autoscroll bug fixed (forgot to set the SA_Overscan Tagitem)
  258.     - added -VGA option
  259.  
  260.  
  261. 1.3 - 4-June-1994
  262.  
  263.     - added -jpegAGA option for creating map-files for the program jpegAGA
  264.  
  265.  
  266. 1.4 - 6-October-1994
  267.  
  268.     - added support for the MAPDIR environment variable to be conformant with
  269.       jpegAGA 1.1 or higher
  270.     - you can now use Floyd-Steinberg dithering in the HAM8-mode
  271.     - added -SMR option to let you choose the screenmode much better
  272.  
  273. 1.5 - 19-November-1994
  274.  
  275.     - fixed a possible Enforcer hit
  276.     - added option -b Name as needed by PhotoCDAGA
  277.  
  278.  
  279.  
  280. Announcement
  281. ************
  282.  
  283. The actual version of this program does not offer very much. My spare time
  284. is very limited because I am now studying Electrical Engineering at the Uni-
  285. versity Stuttgart. Therefore I am searching for other developers to cooperate
  286. with me and beta-testers for testing purposes. If you want to join in then
  287. please contact me. I will then create a detailed description of the source.
  288.  
  289. To recompile the source you need the newiff package from Commodore.
  290. V37 is available on Fish-disk 705 and V39 on the "3.1 Amiga Developer Update"
  291. disks. (Or on Aminet and on the Fresh Fish CD-ROM's.)
  292. If you find a bug, a Mungwall/Enforcer hit, or if you have some suggestions
  293. for additional features then send me a message.
  294.  
  295. Future plans:
  296. - PhotoCD viewer/converter with the picture quality of jpegAGA/ppm2AGA
  297.   (This is already done :-)
  298. - graphical user interface
  299. - support for animations, especially converting MPEG to IFF-ANIM in HAM8 mode
  300. - support for other picture formats and basic image processing
  301.   (scaling, clipping, etc.)
  302. - ARexx-port
  303. - documentation in TeX-DVI and AmigaGuide format
  304. - complete (and correct) translation of the German documentation
  305. - fast ppm-viewer using the HAM8-mode with fixed colormap and doubled horizontal
  306.   resolution for higher quality, perhaps as datatype
  307.   (If you don't understand what I mean then send me a note)
  308. - using the colormap from other pictures instead of computing it
  309. - etc.
  310.  
  311. Next project: jpegAGA 2.0, with following new features:
  312. - based on IJG JPEG V5 code (instead of V4)
  313. - high speed scaling, can be used for VERY fast preview
  314.   (only a few seconds even for large JPEG's)
  315. - little bit faster
  316.  
  317.  
  318. All messages/gifts/etc. should be sent to the following addresses:
  319.  
  320.  
  321.   electronic mail:                                  normal mail:
  322.   ****************                                  ************
  323.  
  324.  Guenther@studbox.uni-stuttgart.de                  Günther Röhrich
  325.      (Internet EMAIL)                               Lerchenbergstr. 4
  326.                                                     73733 Esslingen
  327.                                                         Germany
  328.  
  329.  
  330. If you don't get an answer to a EMAIL within 3 weeks then try it again
  331. with normal mail.
  332.  
  333.  
  334. Here is how to get all the stuff I mentioned in the doc:
  335. ********************************************************
  336.  
  337. The NETPBM-package and the JPEG-source are available via FTP.
  338. (for example from ftp.uni-stuttgart.de)
  339.  
  340. NETPBM: ftp.uni-stuttgart.de in aminet/gfx/pbm
  341.         (or on all the other Aminet mirrors)
  342.         ftp.uni-oldenburg.de in ?
  343.  
  344. JPEG:   ftp.uu.net in graphics/jpeg
  345.         (or on Aminet in gfx/conv)
  346.  
  347.  
  348. If you have no other possibility you can get everything directly from me.
  349.  
  350. In the document "Info.Developer" you can read how to get other developer
  351. material, especially the "3.1 Amiga Developer Update".
  352.  
  353. NOTE: Commodore does not exist any more, I don't know if it is still possible
  354. to get developer materials. Try to contact the German company Hirsch & Wolf oHG.
  355.